body{
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.background-video{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index: -1;
}

.School{
    text-align: center;
    color: white;
}

.container{
   background-color: rgba(128, 128, 128, 0.338);
   backdrop-filter: blur(20px);
   padding: 50px;
   border-radius: 20px;
   width: 100%;
   max-width: 300px;
   margin-top: 20px;
   border: 2px solid black;
}

.group label{
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: white;
}

.group input{
    width: 100%;
    padding: 5px;
    border-radius: 10px;
    border: none;
    outline: none;
    margin-bottom: 30px;
    color: black;
}

.account {
    margin-bottom: 40px;
    margin-top: -5px;
}

.account a{
    color:antiquewhite;
}

#btn{
    margin-left: 33%;
    border: none;
    text-decoration: none;
    background-color: black;
    color: white;
    padding: 10px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
    text-transform: uppercase;
}

#btn:hover{
    color: black;
    background-color: white;
}

#msg{
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

#nanny{
    margin-top: -20px;
    font-weight: bold;
}

#info{
    margin-top: -20px;
    font-weight: bold;
}

@media (max-width: 768px) {

    .School{
        font-size: 25px;
    }
    .container{
   background-color: rgba(128, 128, 128, 0.338);
   backdrop-filter: blur(20px);
   padding: 30px;
   border-radius: 20px;
   width: 80%;
   max-width: 230px;
   border: 2px solid black;
}

.background-video{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-1;
}

}

